home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / native_jvm.e < prev    next >
Text File  |  2000-03-25  |  3KB  |  115 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class NATIVE_JVM
  17.  
  18. inherit NATIVE;
  19.  
  20. feature
  21.  
  22.    frozen stupid_switch_function(r: ARRAY[RUN_CLASS]; name: STRING): BOOLEAN is
  23.       do
  24.          check false end;
  25.       end;
  26.  
  27.    frozen stupid_switch_procedure(r: ARRAY[RUN_CLASS]; name: STRING): BOOLEAN is
  28.       do
  29.          check false end;
  30.       end;
  31.  
  32.    frozen c_define_procedure(rf7: RUN_FEATURE_7; bcn, name: STRING) is
  33.       do
  34.          fe_c2c(rf7)
  35.       end;
  36.  
  37.    frozen c_mapping_procedure(rf7: RUN_FEATURE_7; bcn, name: STRING) is
  38.       do
  39.          fe_c2c(rf7)
  40.       end;
  41.  
  42.    frozen c_define_function(rf8: RUN_FEATURE_8; bcn, name: STRING) is
  43.       do
  44.          fe_c2c(rf8)
  45.       end;
  46.  
  47.    frozen c_mapping_function(rf8: RUN_FEATURE_8; bcn, name: STRING) is
  48.       do
  49.          fe_c2c(rf8)
  50.       end;
  51.  
  52. feature {NONE}
  53.  
  54.    idx_methodref(er: EXTERNAL_ROUTINE): INTEGER is
  55.       local
  56.          i: integer;
  57.          alias_string: STRING;
  58.          cp: like constant_pool;
  59.       do
  60.          cp := constant_pool;
  61.          alias_string := er.alias_string;
  62.          if alias_string = Void then
  63.             eh.add_position(er.start_position);
  64.             fatal_error(
  65.              "Missing %"alias%" field description (see %
  66.              %external.html documentation).");
  67.          end;
  68.          from
  69.             i := 1;
  70.             tmp_class.clear;
  71.          until
  72.             alias_string.item(i) = '.'
  73.          loop
  74.             tmp_class.extend(alias_string.item(i));
  75.             i := i + 1;
  76.          end;
  77.          from
  78.             i := i + 1;
  79.             tmp_name.clear;
  80.          until
  81.             alias_string.item(i) = ' '
  82.          loop
  83.             tmp_name.extend(alias_string.item(i));
  84.             i := i + 1;
  85.          end;
  86.          from
  87.             i := i + 1;
  88.             tmp_descriptor.clear;
  89.          until
  90.             i > alias_string.count
  91.          loop
  92.             tmp_descriptor.extend(alias_string.item(i));
  93.             i := i + 1;
  94.          end;
  95.          Result := cp.idx_methodref3(tmp_class,tmp_name,tmp_descriptor);
  96.       end;
  97.  
  98.    tmp_class: STRING is
  99.       once
  100.          !!Result.make(32);
  101.       end;
  102.  
  103.    tmp_name: STRING is
  104.       once
  105.          !!Result.make(32);
  106.       end;
  107.  
  108.    tmp_descriptor: STRING is
  109.       once
  110.          !!Result.make(32);
  111.       end;
  112.  
  113. end -- NATIVE_JVM
  114.  
  115.